.mentor-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050505, #000);
    position: relative;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

/* --- Mentor Side --- */
.mentor-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 180, 153, 0.3);
}

.mentor-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: 0.5s ease;
}

.mentor-image-wrapper:hover .mentor-main-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.mentor-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--primary);
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.mentor-details h3 {
    font-size: 2.2rem;
    margin-top: 30px;
    color: #fff;
}

.mentor-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

/* --- Student Side --- */
.student-meta .label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.student-meta h2 {
    font-size: 3.5rem;
    margin: 10px 0;
    color: #fff;
}

.study-info {
    font-size: 1.1rem;
    font-weight: 200;
    opacity: 0.8;
}

.certification-badge {
    display: inline-block;
    border: 1px solid var(--primary);
    padding: 5px 15px;
    margin-top: 15px;
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
}

/* --- Memory 3-Pics Grid --- */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.memory-item {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: crosshair;
}

.memory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.memory-item:hover img {
    transform: scale(1.1);
}

.img-label {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.7);
    font-size: 0.6rem;
    text-align: center;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .mentor-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .mentor-main-img { height: 400px; }
    
    .student-meta h2 { font-size: 2.5rem; }
    
    .memory-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .memory-item { height: 300px; }
}